}
public List<Integer> asIntArray() {
List<Integer> ret = Lists.newArrayListWithCapacity(e.getAsJsonArray().size());
for (JsonElement item : e.getAsJsonArray()) {
ret.add(item.getAsInt());
}
return ret;
}
public List<Long> asLongArray() {
}
public List<Integer> asIntArray() {
return map(e.getAsJsonArray(), JsonElement::getAsInt);
}
public List<Long> asLongArray() {